home *** CD-ROM | disk | FTP | other *** search
- /*
- SeekDefs.h -- Common definitions
-
- Copyright Apple Computer,Inc. 1987-1990, 1994, 1995
- All rights reserved.
-
-
- SEEK constants - defined only by FCntl and stdio. NOT defined by stddef
- when included explicitly.
- */
-
-
- #ifndef __SEEKDEFS__
- #define __SEEKDEFS__
-
- #define SEEK_CUR 1
- #define SEEK_END 2
- #define SEEK_SET 0
-
- #endif
-
-